视图解析
View 视图的类型
View 的作用: 处理模型数据和页面跳转(转发, 重定向)
- InternalResourceView: 转发视图
- JstlView: 转发视图,用来支持页面中的 jstl 的。继承自 InternalResourceView
- RedirectView: 重定向视图
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| package com.atguigu.controller;
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod;
@Controller public class TestController {
@RequestMapping(value = "/test", method = RequestMethod.GET) public String testGET() { return "success"; } }
|
SpringMVC 初始化配置
指定配置文件位置和名称
可以使用 init-param
设置配置文件的位置和名称
1 2 3 4 5 6
| <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springMVC.xml</param-value> </init-param>
|
控制 Servlet 加载时间
可以使用 load-on-startup
来设置 Servlet 的加载时间。默认是第一次访问的时候加载。若设置了 load-on-startup
则可以将 Servlet 加载时间提前到项目启动时。标签中的值范围是整数,但是只有设置为正整数才有效果。负数和0都没有效果。正整数值越小,优先级越高。
1 2 3
|
<load-on-startup>1</load-on-startup>
|
web.xml 完整配置如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>SpringMVC03</display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>springMVC</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springMVC.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
<servlet-mapping> <servlet-name>springMVC</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <filter> <filter-name>HiddenHttpMethodFilter</filter-name> <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class> </filter> <filter-mapping> <filter-name>HiddenHttpMethodFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
|
编码过滤器
SpringMVC 自带了CharacterEncodingFilter 过滤器解决编码的问题。使用时需要将该过滤器在 web.xml 中排在第一的位置上。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
|
到现在为止,我们需要在 web.xml 中配置的有,CharacterEncodingFilter,HiddenHttpMethodFilter 和 Servlet。需要在 SpringMVC 的 xml 配置的有 context:component-scan
和 视图解析器。
代码地址
REST CRUD
在此项目中,会实现员工的添加,修改,展示等。源码地址
需要注意的是,在这里解决了如果静态资源受 DispatcherServlet
影响的问题。为什么会有这样的问题: 优雅的 REST 风格的资源URL 不希望带 .html 或 .do 等后缀,若将 DispatcherServlet 请求映射配置为 /, 则 Spring MVC 将捕获 WEB 容器的所有请求, 包括静态资源的请求, SpringMVC 会将他们当成一个普通请求处理, 因找不到对应处理器将导致错误。解决方法:在 SpringMVC 的配置文件中配置 <mvc:default-servlet-handler/>
<mvc:annotation-driven />
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
<context:component-scan base-package="com.atguigu.rest.crud"></context:component-scan> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/view/"></property> <property name="suffix" value=".jsp"></property> </bean> <mvc:default-servlet-handler/> <mvc:annotation-driven /> </beans>
|
静态资源处理
如上面 REST CRUD 例子中出现的静态文件问题。解决方法是添加<mvc:default-servlet-handler/>
配置。该配置将在 SpringMVC 上下文中定义一个 DefaultServletHttpRequestHandler,它会对进入 DispatcherServlet 的请求进行筛查,如果发现是没有经过映射的请求,就将该请求交由 WEB 应用服务器默认的 Servlet 处理,如果不是静态资源的请求,才由 DispatcherServlet 继续处理。配置后还需结合 <mvc:annotation-driven />
进行使用,即
1 2
| <mvc:default-servlet-handler/> <mvc:annotation-driven />
|